home *** CD-ROM | disk | FTP | other *** search
- // -----
- // VDL174.txt
- // Copyright 1996 Claris
- // -----
-
-
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
-
- #define kOKButtonText "&OK"
- #define kCancelButtonText "&Cancel"
- #define kSkipButtonText "&Skip file"
-
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
-
- #if Platform_Mac
- #define kOKButtonWidth 70
- #define kCancelButtonWidth 70
- #define kSkipButtonWidth 140
-
- #else
- #define kOKButtonWidth 100
- #define kCancelButtonWidth 100
- #define kSkipButtonWidth 140
- #endif
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
-
-
- //No further localizable data past this point
-
- /************************** END LOCALIZABLE DATA ***************************************************/
-
-
-
- Margin(10, 10, 10, 10, BackColor = Dialog)
- VList()
- {
- HList()
- {
- #if Platform_Mac
- ICON(2);
- #endif
-
- Spacer(Width = 10);
- StaticText(errorMessage, Width = 350);
- }
-
- Spacer(Height = 10);
- HList()
- {
- CancelButton(kSkipButtonText, 1072, "None", Width = kSkipButtonWidth);
- Spacer(Width = UseParent, Height = 0);
-
- #if Platform_Mac
- Spacer(Width = 10, Height = 0);
- CancelButton(kCancelButtonText, 1070, "None", Width = kCancelButtonWidth);
- Spacer(Width = 10, Height = 0);
-
- DefaultButton(kOKButtonText, 1071, "None", Width = kOKButtonWidth);
- #else
- Spacer(Width = 10, Height = 0);
- DefaultButton(kOKButtonText, 1071, "None", Width = kOKButtonWidth);
- Spacer(Width = 10, Height = 0);
-
- CancelButton(kCancelButtonText, 1070, "None", Width = kCancelButtonWidth);
- #endif
- }
- }